/TurboTurtle/trunk/SLogo Developers: Nika Pogrebna

Login name:
Nika Pogrebna
Total Commits:
142 (30.9%)
Lines of Code:
1,711 (16.8%)
Most Recent Commit:
2016-12-15 23:27
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for Nika Pogrebna

Activity by Day of Week for Nika Pogrebna

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 142 (100.0%) 1711 (100.0%) 12.0
src/slogo/turtle/ 53 (37.3%) 1217 (71.1%) 22.9
src/slogo/ 20 (14.1%) 160 (9.4%) 8.0
src/slogo/instruction/ 20 (14.1%) 159 (9.3%) 7.9
src/slogo/parser/ 11 (7.7%) 62 (3.6%) 5.6
src/slogo/testing/ 3 (2.1%) 61 (3.6%) 20.3
src/slogo/expression/ 5 (3.5%) 31 (1.8%) 6.2
src/slogo/parser/token/ 3 (2.1%) 16 (0.9%) 5.3
saved_slogo_programs/ 9 (6.3%) 4 (0.2%) 0.4
background_images/ 7 (4.9%) 1 (0.1%) 0.1
images/ 10 (7.0%) 0 (0.0%) 0.0
/ 1 (0.7%) 0 (0.0%) 0.0

Activity of Nika Pogrebna

Most Recent Commits

Nika Pogrebna 2016-12-15 23:27 Rev.: 1849

Added list of our implementations into comments in TurtleField

5 lines of code changed in 1 file:

  • src/slogo/turtle: TurtleField.java (+5)
Nika Pogrebna 2016-12-15 23:23 Rev.: 1848

Took out the scroll bar code because I couldn't get it to work in the text area.

1 lines of code changed in 1 file:

  • src/slogo/turtle: TurtleField.java (+1 -12)
Nika Pogrebna 2016-12-15 22:59 Rev.: 1845

Made text windows close when file is saved.

5 lines of code changed in 1 file:

  • src/slogo/turtle: TurtleField.java (+5 -2)
Nika Pogrebna 2016-12-15 22:50 Rev.: 1844

Formatted files in slogo.turtle. Added method comments where missing. Refactored TurtleField as much as possible.

288 lines of code changed in 5 files:

  • src/slogo/turtle: JTurtle.java (+56 -26), Renderer.java (+23 -8), TurtleField.java (+178 -113), TurtleListener.java (-1), TurtleTrailLink.java (+31 -17)
Nika Pogrebna 2016-12-15 21:24 Rev.: 1834

Finished formatting and proofreading the following packages: slogo, slogo.expression, slogo.instruction

85 lines of code changed in 13 files:

  • src/slogo: SLogoInterpreter.java (+2 -5)
  • src/slogo/expression: SubRoutine.java (+19 -2), Variable.java (+6 -2)
  • src/slogo/instruction: Addition.java (+4 -2), Assignment.java (+1 -1), Clean.java (+3 -2), ClearScreen.java (+4 -5), IF.java (+10 -9), PenDownP.java (+10 -9), Repeat.java (+3 -3), StrictInstructionList.java (+3 -3), To.java (+20 -3), Ycor.java (-1)
Nika Pogrebna 2016-12-15 20:48 Rev.: 1832

Formatted and added method comments to all files in slogo package.

66 lines of code changed in 3 files:

  • src/slogo: Context.java (+2 -2), SLogoInterpreter.java (+25 -17), TurtleContext.java (+39 -13)
Nika Pogrebna 2016-12-15 17:48 Rev.: 1806

0 lines of code changed in 4 files:

  • saved_slogo_programs: test.txt (del), test2.txt (del), testFile.txt (del), testFile2.txt (del)
Nika Pogrebna 2016-12-15 17:46 Rev.: 1804

Fixed SubRoutine.java to extend Instructions and cleared saved programs folder

2 lines of code changed in 1 file:

  • src/slogo/expression: SubRoutine.java (+2 -2)
Nika Pogrebna 2016-12-15 17:41 Rev.: 1803

Edited To.java

1 lines of code changed in 1 file:

  • src/slogo/instruction: To.java (+1 -1)
Nika Pogrebna 2016-12-15 17:39 Rev.: 1802

Added space in To.java

1 lines of code changed in 1 file:

  • src/slogo/instruction: To.java (+1 -1)
Nika Pogrebna 2016-12-15 17:35 Rev.: 1801

Finished Open File button implementation which opens up a file, exports instructions to it and saves it

130 lines of code changed in 1 file:

  • src/slogo/turtle: TurtleField.java (+130 -93)
Nika Pogrebna 2016-12-15 16:18 Rev.: 1790

Finished saving to a new file implementation.

20 lines of code changed in 3 files:

  • src/slogo: SLogoInterpreter.java (+7 -2)
  • src/slogo/instruction: StrictInstructionList.java (+5 -1)
  • src/slogo/turtle: TurtleField.java (+8 -8)
Nika Pogrebna 2016-12-15 15:40 Rev.: 1787

Fixed Variable.java to get the variable out of the context so that x=20, fd x will move turtle forward 20.

1 lines of code changed in 1 file:

  • src/slogo/expression: Variable.java (+1 -1)
Nika Pogrebna 2016-12-15 15:37 Rev.: 1785

NewFile button now works. Still need to add instruction export method.

68 lines of code changed in 3 files:

  • saved_slogo_programs: testFile.txt (new), testFile2.txt (new 1)
  • src/slogo/turtle: TurtleField.java (+67 -83)
Nika Pogrebna 2016-12-15 14:42 Rev.: 1782

Cleaned project

81 lines of code changed in 1 file:

  • src/slogo/turtle: TurtleField.java (+81 -7)
Nika Pogrebna 2016-12-15 07:03 Rev.: 1762

Added comments to TurtleContext.

15 lines of code changed in 5 files:

  • background_images: beach.jpg (changed), grass.jpg (new), sea.jpg (del)
  • src/slogo: SLogoInterpreter.java (-4), TurtleContext.java (+15 -14)
Nika Pogrebna 2016-12-15 06:46 Rev.: 1761

Refactored JTurtle by moving all instance variables to the top and making sure they all had access modifiers. Deleted some code that was not needed. Recentered the turtle since I resized the window earlier to fit all the buttons.

17 lines of code changed in 2 files:

  • src/slogo/turtle: JTurtle.java (+14 -13), TurtleField.java (+3 -3)
Nika Pogrebna 2016-12-15 06:28 Rev.: 1760

Added last pop up window for Advice on background image size if not chosen from default directory. Added more images to default background images directory.

10 lines of code changed in 6 files:

  • background_images: beach.jpg (new), ocean.jpg (del), sand.jpg (new), sea.jpg (new 1)
  • src/slogo/turtle: JTurtle.java (+1 -1), TurtleField.java (+8 -1)
Nika Pogrebna 2016-12-15 00:11 Rev.: 1757

Still fighting on getting file saving to work. Updated the GUI so that hide/show does not put any buttons off screen.

53 lines of code changed in 3 files:

  • saved_slogo_programs: test.txt (+1 -1), test2.txt (new 1)
  • src/slogo/turtle: TurtleField.java (+51 -31)
Nika Pogrebna 2016-12-14 18:39 Rev.: 1714

Added functionality to put in file name to save a file with instruction and automatically pop up another window where eventually the contents of the file will be displayed.

182 lines of code changed in 2 files:

  • saved_slogo_programs: test.txt (new 1)
  • src/slogo/turtle: TurtleField.java (+181 -137)

(38 more)

Generated by StatSVN 0.7.0